ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / AutoCompleteBase<T> Class / SearchMemberPath Property






In This Topic
    SearchMemberPath Property (AutoCompleteBase<T>)
    In This Topic
    Gets or sets a string containing a comma-separated list of properties to use when searching for items.
    Syntax
    'Declaration
     
    
    Public Overridable Property SearchMemberPath As System.String
    'Usage
     
    
    Dim instance As AutoCompleteBase(Of T)
    Dim value As System.String
     
    instance.SearchMemberPath = value
     
    value = instance.SearchMemberPath
    public virtual System.string SearchMemberPath {get; set;}
    public read-write property SearchMemberPath: System.String; virtual; 
    public function get,set SearchMemberPath : System.String
    public: __property virtual System.string* get_SearchMemberPath();
    public: __property virtual void set_SearchMemberPath( 
       System.string* value
    );
    public:
    virtual property System.String^ SearchMemberPath {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    By default, the AutoComplete control searches for matches against the property specified by the DisplayMemberPath property. The searchMemberPath property allows you to search using additional properties.
    See Also